home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Lotus 1-2-3 Pop-up Menu Configuration
- ;
- Comment ("Configured for Lotus 1-2-3")
-
- ;
- ; Parameters
- ;
- Sensitivity (20,20) ; (Xinc, Yinc)
- Hysteresis (1, 1) ; (AutoX, AutoY)
- ReverseVideo (Yes) ; Menu is displayed in reverse video
- FixedMenu (Yes) ; Menu is in a fixed position
- MenuCenter (0, 24) ; (Col, Row) of menu center
- EnableBeep (No) ; Beeps if wrong button pressed with menu up
-
- ;
- ; Cursor Definitions
- ;
- ArrowKeys: Cursor
- (
- Left ([Left])
- Right ([Right])
- Up ([Up])
- Down ([Down])
- )
-
- ;
- ; Button Definitions
- ;
- LBM: Button (Menu(Main)) ; Left button, Main Menu
- MB: Button (Keys([Enter])) ; Middle button
- RB: Button (Keys([Esc])) ; Right button
- LBC: Button (Menu(Calc)) ; Left button, Calc Menu
-
- ;
- ; Menu Definitions
- ;
- Main: Menu
- (
- Title ("Main")
- Item ("Lotus Menu", Keys("/"))
- Item ("Anchor", Keys("."))
- Item ("Calc Menu", Menu(Calc), Button(LBC))
- Item ("Edit", Keys([F2]))
- Item ("Select", Keys([Enter]))
- Item ("Cancel", Keys([Esc]))
- Item ("Range Name", Keys([F3]))
- Item ("Window", Keys([F6]))
- Item ("Help", Keys([F1]))
- Item ("Home", Keys([Home]))
- Item ("End", Keys([End]))
- )
-
- Calc: Menu
- (
- Title ("Calc")
- Item ("@Sum(", Keys("@Sum("))
- Item ("Anchor", Keys("."))
- Item (")", Keys(")"))
- Item ("(", Keys("("))
- Item ("+", Keys("+"))
- Item ("-", Keys("-"))
- Item ("*", Keys("*"))
- Item ("/", Keys("/"))
- Item ("Absolute", Keys([F4]))
- Item ("Edit", Keys([F2]))
- Item ("Recalc", Keys([F9]))
- Item ("Main Menu", Menu(Main), Button(LBM))
- )
-
- ;
- ; Mouse Definition
- ;
- Mouse
- (
- Left (LBM) ; Left Button
- Middle (MB) ; Middle Button
- LeftRight(MB) ; Left Right Button chord
- Right (RB) ; Right Button
- Cursor (ArrowKeys)
- )